English
Real-world examples of extracting and analyzing signals from various data sources
# Feature Request Detection signal_rule: type: "feature_request" triggers: - "need feature" - "would be great if" - "missing functionality" context: pre_words: 3 post_words: 5 priority: default: "medium" keywords: urgent: "high" nice: "low"
{ "sentiment_config": { "granularity": "sentence", "aspects": [ "product", "support", "pricing" ], "scale": { "range": [-1, 1], "neutral_threshold": 0.1 } } }
Customer Feedback
source: "support_call" extract: - product_issues - feature_requests - satisfaction_level context: customer_segment: "enterprise" product_version: "2.4.0"
Sales Call
source: "sales_meeting" extract: - pain_points - competitor_mentions - pricing_feedback priority: "high" notify: ["sales_team", "product"]
Text Processing
# Signal extraction from text config = { "nlp": { "models": ["sentiment", "entity"], "language": "en", "confidence": 0.8 }, "output": { "format": "structured", "include_context": true } }
Audio Processing
# Signal extraction from audio config = { "audio": { "speaker_detection": true, "emotion_analysis": true, "keyword_spotting": true }, "timestamps": true }
# Define custom signal custom_signal: name: "integration_request" patterns: - "integrate with" - "connection to" - "sync with" metadata: - platform - requirements - priority actions: - create_ticket - notify_team
{ "correlation_rules": { "time_window": "7d", "min_occurrences": 3, "confidence": 0.85, "grouping": [ "customer_segment", "product_area" ] } }
# Salesforce signal sync integration: platform: "salesforce" mapping: feature_request: object: "Product_Request__c" fields: description: "signal.content" priority: "signal.priority" source: "signal.meeting_id"
# Jira ticket creation automation: trigger: "new_signal" conditions: type: "bug_report" priority: "high" action: create_issue: project: "PROD" type: "Bug" labels: ["customer-reported"]
# Signal trend detection analysis: timeframe: "30d" grouping: - signal_type - product_area metrics: - volume - sentiment - priority visualization: type: "trend_chart" breakdown: "weekly"
{ "impact_scoring": { "factors": { "customer_tier": { "enterprise": 3, "business": 2, "starter": 1 }, "frequency": { "weight": 0.4, "scale": [1, 5] }, "sentiment": { "weight": 0.3, "range": [-1, 1] } } } }
Common Issues
# Troubleshooting steps checks: - signal_rules - source_quality - processing_logs - integration_status
Quality Improvements
# Enhancement steps improvements: - pattern_refinement - context_expansion - threshold_adjustment - validation_rules
Was this page helpful?